home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / domino_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  77 lines

  1. #
  2. # This script is (C) Renaud Deraison
  3. #
  4.  
  5.  
  6. if(description)
  7. {
  8.  script_id(11394);
  9.  script_bugtraq_id(2962);
  10.  script_version ("$Revision: 1.8 $");
  11.  
  12.  script_cve_id("CVE-2001-1161");
  13.  
  14.  name["english"] = "Lotus Domino XSS";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote server is vulnerable to cross-site scripting,
  19. when requesting a .nsf file with html arguments, as in :
  20.  
  21. GET /home.nsf/<img%20src=javascript:alert(document.domain)>
  22.  
  23.  
  24. Solution : Upgrade to Domino 5.0.8 or newer
  25. Risk factor : Medium";
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for Lotus Domino XSS";
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  37.  family["english"] = "CGI abuses";
  38.  family["francais"] = "Abus de CGI";
  39.  script_family(english:family["english"], francais:family["francais"]);
  40.  
  41.  script_dependencie("find_service.nes", "http_version.nasl", "domino_default_db.nasl", "cross_site_scripting.nasl", "www_fingerprinting_hmap.nasl");
  42.  script_require_ports("Services/www", 80);
  43.  exit(0);
  44. }
  45.  
  46. #
  47. # The script code starts here
  48. #
  49. include("http_func.inc");
  50. include("http_keepalive.inc");
  51.  
  52. port = get_http_port(default:80);
  53.  
  54. if(!get_port_state(port))exit(0);
  55. sig = get_kb_item("www/hmap/" + port + "/description");
  56. if ( sig && "Lotus Domino" >!< sig ) exit(0);
  57. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  58.  
  59. list = get_kb_list(string("www/domino/", port, "/db"));
  60. if(!isnull(list))
  61. {
  62.  file = list[0];
  63. }
  64. else {
  65.     list = get_kb_list(string("www/", port, "/content/extensions/nsf"));
  66.     if(!isnull(list))file = list[0];
  67.     else file = "/home.nsf"; # Maybe we'd better exit now.
  68. }
  69.     
  70.     
  71. req = http_get(item:string(file,"/<img%20src=javascript:alert(document.domain)>"), port:port);
  72. res = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  73.  
  74. if ( res == NULL ) exit (0);
  75.  
  76. if("<img src=javascript:alert(document.domain)>" >< res ) security_warning(port);
  77.